home *** CD-ROM | disk | FTP | other *** search
- /* calc8x8dither.h
- * AUTHOR: Cy Booker, cy@cheepnis.demon.co.uk
- * LICENSE: FreeWare, Copyright (c) 1995 Cy Booker
- * PURPOSE: convert an 8 bit image to a 16 bit image
- */
-
- #ifndef calc8x8dither_h
- #define calc8x8dither_h
-
-
-
- #include "OS:os.h"
-
-
-
- /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- * this calculates the two 32K colour numbers whose ``midpoint intersection'' lies closest
- * to the specified palette entry
- * you can then use these colours as an index into a halftone ``bump'' map
- */
-
- extern void calculate_8x8dither(
- bits dither[2],
- os_colour colour) {
-
-
- #endif /* calc8x8dither_h */
-